home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #3 / Amiga Plus CD - 2002 - No. 03.iso / AmigaPlus / Tools / Development / envCPP31 / c++ / syntax / sample.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-01-01  |  173 b   |  12 lines

  1. #include "defs.h"
  2.  
  3. #define MAGIC 42
  4.  
  5. /* each object is described by a node */
  6.  
  7. struct ObjectNode
  8. {
  9.     UBYTE *Name;      // identification
  10.     APTR   Content;   // value
  11. };
  12.